These are the ASM hacks for the various Complets games.

Very brief porting guide:

If you need to port these to another game, first use OllyDBG or something to disassemble the entire game.  You'll need to disassemble both the game that the existing patch was made for, and the new game.

Look at what was changed in the old game, and find what corresponds in the new game.  Most of the code and the surrounding code will be an exact match, except for addresses.  So if you see the same instructions surrounded by the same instructions, you found a match.

Some symbols will need to be moved as well.  Look at the old code, and look for how the memory addresses have changed, those are the symbols that we're interested in.

Also fix the EXE header stuff too.